'Declaration
<ExtensionAttribute()> <NotNullAttribute()> Public Overloads Shared Function WaitForMultipleItemValues( _ ByVal client As IEasyDAClient, _ ByVal itemGroupArgumentsList As IReadOnlyList(Of DAItemGroupArguments), _ ByVal millisecondsTimeout As Integer _ ) As ValueResult()
'Usage
Dim client As IEasyDAClient Dim itemGroupArgumentsList As IReadOnlyList(Of DAItemGroupArguments) Dim millisecondsTimeout As Integer Dim value() As ValueResult value = IEasyDAClientExtension2.WaitForMultipleItemValues(client, itemGroupArgumentsList, millisecondsTimeout)
[Extension()] [NotNull()] public static ValueResult[] WaitForMultipleItemValues( IEasyDAClient client, IReadOnlyList<DAItemGroupArguments> itemGroupArgumentsList, int millisecondsTimeout )
[Extension()] [NotNull()] public: static array<ValueResult^>^ WaitForMultipleItemValues( IEasyDAClient^ client, IReadOnlyList<DAItemGroupArguments^>^ itemGroupArgumentsList, int millisecondsTimeout )
Parameters
- client
- The client object that will perform the operation.
This is typically the OpcLabs.EasyOpc.DataAccess.EasyDAClient object.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - itemGroupArgumentsList
- List of OPC-DA item group arguments (each argument holds an OPC server and item descriptor, and OPC group parameters).
The value of this parameter cannot be
null
(Nothing
in Visual Basic).The individual elements of the parameter value cannot be
null
(Nothing
in Visual Basic). - millisecondsTimeout
- The number of milliseconds to wait, or System.Threading.Timeout.Infinite to wait indefinitely.
Valid values of this parameter are in the range from
-1
to2147483647 (Int32.MaxValue)
.
Return Value
This method never returns null
(Nothing
in Visual Basic).
The individual elements of the returned value are never null
(Nothing
in Visual Basic).